Return to doc.sitecore.com

  Web.config Changes in Sitecore CMS 6.2.0 rev. 100104 Compared to Sitecore CMS 6.2.0 rev.091012

Select the link below to download the Web.config file of the default Sitecore CMS 6.2.0 rev.100104 installation:

Below is the list of changes made to the web.config file of Sitecore CMS 6.2.0 rev.100104 as compared to the one in Sitecore CMS 6.2.0 rev.091012. 

  1. Added  to the <sitecore><pipelines> section:
    <!-- Item filtering. Used for publishing items on the fly when a web site runs in live mode. -->
         <filterItem>
           <processor type="Sitecore.Nexus.Pipelines.FilterItem.CheckIfFilteringIsActive, Sitecore.Nexus"/>
           <processor type="Sitecore.Nexus.Pipelines.FilterItem.GetPublishedVersionOfItem, Sitecore.Nexus"/>
         </filterItem>
  2. Changed from:
              <counters hint="raw:AddCounter">
                <counter category="Process" name="Private Bytes" />
                <counter category="Process" name="Virtual Bytes" />
                <counter category="Process" name="Page File Bytes" />
                <counter category=".net CLR Memory" name="# Bytes in all Heaps" />
                <counter category=".net CLR Memory" name="% Time in GC" />
                <counter category=".net CLR Memory" name="Large Object Heap size" />
                <counter category=".net CLR Loading" name="Bytes in Loader Heap" />
                <counter category=".net CLR Loading" name="Current Assemblies" />
              </counters>
    to
              <counters hint="raw:AddCounter">
                     <counter category="Process" name="Private Bytes" instanceType="Windows" />
                     <counter category="Process" name="Virtual Bytes" instanceType="Windows" />
                     <counter category="Process" name="Page File Bytes" instanceType="Windows" />
                     <counter category=".net CLR Memory" name="# Bytes in all Heaps" instanceType="CLR" />
                     <counter category=".net CLR Memory" name="% Time in GC" instanceType="CLR" />
                     <counter category=".net CLR Memory" name="Large Object Heap size" instanceType="CLR" />
                     <counter category=".net CLR Loading" name="Bytes in Loader Heap" instanceType="CLR" />
                     <counter category=".net CLR Loading" name="Current Assemblies" instanceType="CLR" />
              </counters>

Note: If you have any custom Health Monitor counters defined, you must add an appropriate instanceType for each custom counter (possible values are “Windows”, “CLR” or “Sitecore”).